home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / gettimeofday.c < prev    next >
C/C++ Source or Header  |  1991-10-02  |  2KB  |  66 lines

  1. /* 
  2.  * gettimeofday.c --
  3.  *
  4.  *    Procedure to map from Unix gettimeofday system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/gettimeofday.c,v 1.3 88/07/29 17:55:56 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15.  
  16. #include "compatInt.h"
  17. #include <sys/time.h>
  18. #include <spriteTime.h>
  19.  
  20.  
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * gettimeofday --
  26.  *
  27.  *    Procedure to map from Unix gettimeofday system call to 
  28.  *    Sprite Sys_GetTimeOfDay.
  29.  *
  30.  * Results:
  31.  *    UNIX_SUCCESS     - the call was successful.
  32.  *    UNIX_ERROR     - the call was not successful. 
  33.  *              The actual error code stored in errno.  
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. gettimeofday(tp, tzp)
  43.     struct timeval *tp;
  44.     struct timezone *tzp;
  45. {
  46.     ReturnStatus status;    /* result returned by Sys_GetTimeOfDay */
  47.     int        localOffset;    /* offset in minutes from UTC */
  48.     Boolean    DST;        /* TRUE if Daylight Savings Time is observed */
  49.  
  50.     status = Sys_GetTimeOfDay((Time *) tp, &localOffset, &DST);
  51.     if (status != SUCCESS) {
  52.     errno = Compat_MapCode(status);
  53.     return(UNIX_ERROR);
  54.     } else {
  55.     if (tzp != (struct timezone *) NULL) {
  56.         /*
  57.          * Unix negates the local offset from UTC to make it positive
  58.          * for locations west of the prime meridian. 
  59.          */
  60.         tzp->tz_minuteswest     = -localOffset;
  61.         tzp->tz_dsttime         = DST;
  62.     }
  63.     return(UNIX_SUCCESS);
  64.     }
  65. }
  66.